home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990422-19990725 / 000068_news@watsun.cc.columbia.edu _Tue May 18 17:21:38 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id RAA18067
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 18 May 1999 17:21:38 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id RAA17360
  7.     for kermit.misc@watsun.cc.columbia.edu; Tue, 18 May 1999 17:00:15 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: K95; how to set colors in six screen elements
  11. Date: 18 May 1999 21:00:14 GMT
  12. Organization: Columbia University
  13. Message-ID: <7hskcu$gue$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3741CFD1.62EE@ix.netcom.com>,
  17. Joe H. Gallagher <dtrwiz@ix.netcom.com> wrote:
  18. : In MSKermit, you control the screen colors with
  19. :     set terminal color n1, n2, n3, n4
  20. : At the bottom of page 35 of the Kermit 95, Communications 
  21. : Software for Windows 95 Manual, it states that "K95's terminal 
  22. : window has six major components; each one can have its own
  23. : foreground and background color."  And the issue of color is
  24. : not addressed in C-Kermit, 2nd edition since color is (mostly)
  25. : an issue with MS Kermit and K95.
  26. : What is the syntax of the kermit commands to control the 
  27. : color of 
  28. :     the command screen
  29. :     the terminal screen
  30. :     the status line
  31. :     the pop-up help screens
  32. :     the mouse selection
  33. :     the underline simulation?
  34. >From "help set terminal":
  35.  
  36. SET TERMINAL COLOR <screenpart> <foreground> <background>
  37.  Sets the colors of the terminal emulation screen.
  38.  <screenpart> may be any of the following:
  39.   DEBUG, HELP-TEXT, REVERSE, SELECTION, STATUS-LINE, TERMINAL-SCREEN, or
  40.   UNDERLINED-TEXT.
  41.  <foreground> and <background> may be any of:
  42.   BLACK, BLUE, GREEN, CYAN, RED, MAGENTA, BROWN, LGRAY, DGRAY, LBLUE,
  43.   LGREEN, LCYAN, LRED, LMAGENTA, YELLOW or WHITE.
  44.  The L prefix for the color names means Light.
  45.  
  46. - Frank